From 023f406c9617284ee3b88727df489f20cd066fd6 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 8 Jun 2016 09:03:12 -0400 Subject: [PATCH] test: Skip GtkScrolledWindow::max-content- properties The allowed values for the max-content- properties depend on the value of the min-content- properties, in a way that our simple test is not prepared to deal with. Just skip them for now. --- testsuite/gtk/notify.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/testsuite/gtk/notify.c b/testsuite/gtk/notify.c index 49e567343e..4761988a8c 100644 --- a/testsuite/gtk/notify.c +++ b/testsuite/gtk/notify.c @@ -674,6 +674,12 @@ test_type (gconstpointer data) g_str_equal (pspec->name, "font-name")) continue; + /* these depend on the min-content- properties in a way that breaks our test */ + if (g_type_is_a (type, GTK_TYPE_SCROLLED_WINDOW) && + (g_str_equal (pspec->name, "max-content-width") ||) + g_str_equal (pspec->name, "max-content-height")) + continue; + if (g_test_verbose ()) g_print ("Property %s.%s\n", g_type_name (pspec->owner_type), pspec->name); -- 2.30.2